home *** CD-ROM | disk | FTP | other *** search
/ Gekikoh Dennoh Club 5 / Gekikoh Dennoh Club Vol. 5 (Japan).7z / Gekikoh Dennoh Club Vol. 5 (Japan) (Track 01).bin / internet / xip / iijppp.lzh / src / ccp.h < prev    next >
C/C++ Source or Header  |  1994-10-02  |  824b  |  31 lines

  1. #ifndef _CCP_H_
  2. #define    _CCP_H_
  3.  
  4. #define    CCP_MAXCODE    CODE_RESETACK
  5.  
  6. #define    TY_OUI        0    /* OUI */
  7. #define    TY_PRED1    1    /* Predictor type 1 */
  8. #define    TY_PRED2    2    /* Predictor type 2 */
  9. #define    TY_PUDDLE    3    /* Puddle Jumper */
  10. #define    TY_HWPPC    16    /* Hewlett-Packard PPC */
  11. #define    TY_STAC        17    /* Stac Electronics LZS */
  12. #define    TY_MSPPC    18    /* Microsoft PPC */
  13. #define    TY_GAND        19    /* Gandalf FZA */
  14. #define    TY_V42BIS    20    /* V.42bis compression */
  15. #define    TY_BSD        21    /* BSD LZW Compress */
  16.  
  17. struct ccpstate {
  18.   u_long  his_proto;        /* peer's compression protocol */
  19.   u_long  want_proto;        /* my compression protocol */
  20.  
  21.   u_long  his_reject;        /* Request codes rejected by peer */
  22.   u_long  my_reject;        /* Request codes I have rejected */
  23.  
  24.   u_long  orgout, compout;
  25.   u_long  orgin, compin;
  26. };
  27.  
  28. extern struct ccpstate CcpInfo;
  29.  
  30. #endif
  31.